home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / docs / help / arexxbegin.lha / ARexx_For_Beginners / Articles_01-10 / Example8-1.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1994-12-14  |  190 b   |  10 lines

  1. /* Example8-1 */
  2.  
  3. SAY 'Enter your First Name:'
  4. PULL First
  5. SAY 'Enter you Surname:'
  6. PULL Surname
  7. SAY 'Enter your Age'
  8. PULL Age
  9. SAY 'Hi' First Surname'. You will be 100 in' 100 - Age 'years.'
  10.